home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 001 / qmodmous.arc / M_QMODEM.MSC next >
Text File  |  1986-03-07  |  4KB  |  130 lines

  1. ;
  2. ; QModem Menu Configuration
  3. ;
  4. Comment ('           Qmodem mouse button assignments')
  5. Comment (' LEFT:     Menu selection')
  6. Comment (' RIGHT:    <ESC>')
  7. Comment (' BOTH LEFT & RIGHT')
  8. Comment (' or MIDDLE:')
  9. Comment ('           <CR>')
  10.  
  11. ;
  12. ;          Parameters
  13. ;
  14. Sensitivity    (5, 8)        ; (Xinc, Yinc)
  15. Hysteresis     (2, 2)        ; (AutoX, AutoY)
  16. ReverseVideo   (no)          ; Menu is displayed in reverse video
  17. FixedMenu      (no)          ; Menu is in a fixed position
  18. EnableBeep     (no)          ; No Beeps if wrong button pressed with menu up
  19. ExitMenu       ("Return")    ; To leave menu
  20. ;
  21. ;      Cursor Definitions:  NONE
  22. ;
  23. ;
  24. ;      Button Definitions
  25. ;
  26. LB:    Button   (Menu(Main))  ; Left button, Main Menu
  27. MB:    Button   (Keys([Enter])) ; Middle button: CR
  28. LRB:   Button   (Keys([Enter])) ; R+L Buttons: CR
  29. RB:    Button   (Keys([Esc])) ; Right button: Esc
  30. ;
  31. ; Menu Definitions
  32. ;
  33.  
  34. Exit: Menu
  35. (
  36.   Position  (LowerCenter(40,40))
  37.   Title     ("Exit Qmodem")
  38.   Item      ("Yes",                Keys("Y"))
  39.   Item      ("No",                 Keys("N"))
  40.   Item      ("Leave with modem on",keys("X"))
  41. )
  42.  
  43. Main: Menu
  44. (
  45.   Position  (UpperRight(79,0))
  46.   Title   ("Primary Menu")
  47.   Item    ("Clear Screen",          Keys([a-C]))
  48.   Item    ("Dial Phone",            Keys([a-D]))
  49.   Item    ("Script Execution",      Keys([a-F]))
  50.   Item    ("Hang-Up Phone",         Keys([a-H]))
  51.   Item    ("Change Baud Rates",     Keys([a-P]))
  52.   Item    ("Redial Last Number",    Keys([a-Q]))
  53.   Item    ("DOS Shell",             Keys([a-R]))
  54.   Item    ("Disk Directory",        Keys([a-W]))
  55.   Item    ("Exit Qmodem",           Keys([a-X]),         Menu(exit))
  56.   Item    ("Secondary Menu",        Menu(Second))
  57. ; common items
  58.   Item    ("Toggles Menu",          Menu(Toggle))
  59.   Item    ("Download Files",        Keys([PgDn]))
  60.   Item    ("Upload Files",          Keys([PgUp]))
  61.   Item    ("Capture File toggle",   Keys([c-Home]))
  62.   Item    ("Scroll Back",           Keys([Up]))
  63.   Item    ("Send Break",            keys([c-End]))
  64.   Item    ("Line Feed toggle",      keys([s-Tab]))
  65.   Item    ("Printer echo toggle",   Keys([c-PrtSc]))
  66. )
  67.  
  68. ;
  69. ;   Secondary Menu
  70. ;
  71. Second:     Menu
  72. (
  73.   Position  (UpperRight(79,0))
  74.   Title     ("Secondary Menu")
  75.   Item      ("Translate Table",      Keys([a-A]))
  76.   Item      ("Set Function Keys",    Keys([a-J]))
  77.   Item      ("Log Drive change",     keys([a-L]))
  78.   Item      ("Change Sub-Dirs",      keys([a-O]))
  79.   Item      ("View a file",          keys([a-V]))
  80.   Item      ("Delete a File",        keys([a-Y]))
  81.   Item      ("Primary Menu",         Menu(Main))
  82. ; common items
  83.   Item    ("Toggles Menu",          Menu(Toggle))
  84.   Item    ("Download Files",        Keys([PgDn]))
  85.   Item    ("Upload Files",          Keys([PgUp]))
  86.   Item    ("Capture File toggle",   Keys([c-Home]))
  87.   Item    ("Scroll Back",           Keys([Up]))
  88.   Item    ("Send Break",            keys([c-End]))
  89.   Item    ("Line Feed toggle",      keys([s-Tab]))
  90.   Item    ("Printer echo toggle",   Keys([c-PrtSc]))
  91. )
  92.  
  93. ;
  94. ;     Toggle menu
  95. ;
  96. Toggle:   Menu
  97. (
  98.   Position  (UpperRight(79,0))
  99.   Title     ("Toggles Menu")
  100.   Item      ("Beeps and Bells",     Keys([a-B]))
  101.   Item      ("Echo",                keys([a-E]))
  102.   Item      ("ANSI Graphics Mode",  keys([a-G]))
  103.   Item      ("Program Info",        Keys([a-I]))
  104.   Item      ("ANSI Music Mode",     keys([a-M]))
  105.   Item      ("Split Screen Mode",   keys([a-S]))
  106.   Item      ("Screen Dump",         keys([a-T]))
  107.   Item      ("Xon / Xoff",          keys([a-Z]))
  108.   Item      ("Primary Menu",        Menu(Main))
  109. ; common items
  110.   Item    ("Secondary Menu",          Menu(Second))
  111.   Item    ("Download Files",        Keys([PgDn]))
  112.   Item    ("Upload Files",          Keys([PgUp]))
  113.   Item    ("Capture File toggle",   Keys([c-Home]))
  114.   Item    ("Scroll Back",           Keys([Up]))
  115.   Item    ("Send Break",            keys([c-End]))
  116.   Item    ("Line Feed toggle",      keys([s-Tab]))
  117.   Item    ("Printer echo toggle",   Keys([c-PrtSc]))
  118. )
  119.  
  120. ;
  121. ;          Mouse Definition
  122. ;
  123. Mouse
  124. (
  125.     Left             (LB)
  126.     Middle           (MB)
  127.     Right            (RB)
  128.     LeftRight        (LRB)
  129. )
  130.